home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 51
/
Aminet 51 (2002)(GTI - Schatztruhe)[!][Oct 2002].iso
/
Aminet
/
dev
/
c
/
TinyGL.lha
/
tinygl
/
include
/
gl
/
glu.h
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
2002-08-03
|
378 b
|
25 lines
#ifndef GLU_H
#define GLU_H
#include <GL/gl.h>
#ifdef __cplusplus
extern "C" {
#endif
void gluLookAt(GLdouble eyex, GLdouble eyey, GLdouble eyez,
GLdouble centerx, GLdouble centery, GLdouble centerz,
GLdouble upx, GLdouble upy, GLdouble upz);
void gluPerspective(GLfloat fovy, GLfloat aspect, GLfloat znear, GLfloat zfar);
#ifdef __cplusplus
}
#endif
#endif